PHP warning

Cannot modify header information - headers already sent by (output started at /home/uspekh/uspekh.pro/docs/index.php:1)

/home/uspekh/uspekh.pro/docs/framework/web/CHttpRequest.php(763)

751     /**
752      * Redirects the browser to the specified URL.
753      * @param string $url URL to be redirected to. If the URL is a relative one, the base URL of
754      * the application will be inserted at the beginning.
755      * @param boolean $terminate whether to terminate the current application
756      * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html}
757      * for details about HTTP status code.
758      */
759     public function redirect($url,$terminate=true,$statusCode=302)
760     {
761         if(strpos($url,'/')===0)
762             $url=$this->getHostInfo().$url;
763         header('Location: '.$url, true, $statusCode);
764         if($terminate)
765             Yii::app()->end();
766     }
767 
768     /**
769      * Returns the user preferred language.
770      * The returned language ID will be canonicalized using {@link CLocale::getCanonicalID}.
771      * This method returns false if the user does not have language preference.
772      * @return string the user preferred language.
773      */
774     public function getPreferredLanguage()
775     {

Stack Trace

#2
+
 /home/uspekh/uspekh.pro/docs/protected/controllers/frontend/ProjectsController.php(99): CController->redirect("/error/")
094             $this->description = $data->name;
095 
096             $this->render('show', array('data' => $data));
097 
098         } else {
099             $this->redirect('/error/');
100         }
101     }
102 
103 }
#12
+
 /home/uspekh/uspekh.pro/docs/protected/behaviors/WebApplicationEndBehavior.php(24): CApplication->run()
19         
20         // обрабатываем событие создания модуля
21         $this->onModuleCreate = array($this, 'changeModulePaths');
22         $this->onModuleCreate(new CEvent ($this->owner));
23         
24         $this->owner->run();        
25     }
26     
27     // обработчик события onModuleCreate
28     public function onModuleCreate($event)
29     {
#14
+
 /home/uspekh/uspekh.pro/docs/index.php(47): CComponent->__call("runEnd", array("frontend"))
42     public static function app() {
43         return parent::app();
44     }
45 }
46 
47 Yii::createWebApplication($config)->runEnd('frontend');
2024-04-27 22:40:41 Apache/2.4.53 (Red Hat Enterprise Linux 8) PHP/7.0.33 Yii Framework/1.1.12